home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Harvest C 1.3 / Source Code / conditcomp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-15  |  373 b   |  27 lines  |  [TEXT/ALFA]

  1. /*
  2.  * Harvest C
  3.  * 
  4.  * Copyright 1991 Eric W. Sink   All rights reserved.
  5.  * 
  6.  * This file manages the define symbols which handle conditional compilation.
  7.  * 
  8.  */
  9.  
  10. #ifndef CONDITCOMP
  11. #define CONDITCOMP
  12.  
  13. /* Change the #defines here */
  14.  
  15. #define NDEBUG 1
  16.  
  17. #ifdef OLDMEM
  18. #define P__H *
  19. #else
  20. #define P__H 
  21. #endif
  22.  
  23. #define Via(x) (P__H(x))
  24. typedef char P__H*EString_t;
  25.  
  26. #endif
  27.